Welcome![Sign In][Sign Up]
Location:
Search - source code for a web browser

Search list

[Algorithmhyplas

Description: ************************************************************************ * * * * * THIS IS THE H Y P L A S 2.0 README FILE * * ----------------- * * * * HYPLAS is a finite element program for implicit small and large * * strain analisys of hyperelastic and elasto-plastic two-dimensional * * and axisymmetric solids * * * * HYPLAS v2.0 is the companion software to the textbook: * * EA de Souza Neto, D Peric & DRJ Owen. Computational Methods for * * Plasticity: Theory and Applications. Wiley, Chichester, 2008. * * (www.wiley.com/go/desouzaneto) * * * * Copyright (c) 1998-2008 EA de Souza Neto, D Peric, D.R.J. Owen * *----------------------------------------------------------------------* * File last updated: 18 October 2008 * * * * This file belongs in the directory ../HYPLAS_v2.0 * ************************************************************************ * * * I M P O R T A N T * * * * READ SECTIONS 0 TO 3 OF THIS FILE CAREFULLY BEFORE ATTEMPTING * * TO COMPILE AND RUN THE PROGRAM HYPLAS ON YOUR COMPUTER !! * * * * THE AUTHORS DO NOT GUARANTEE THAT ANY SUGGESTIONS/INSTRUCTIONS * * GIVEN IN THIS README FILE WILL WORK ON ANY PARTICULAR OPERATING * * SYSTEM. IF YOU DECIDE TO FOLLOW ANY SUGGESTIONS/INSTRUCTIONS * * GIVEN HERE YOU MUST DO SO AT YOUR OWN RISK. * * * * * * BUG REPORTS: Please send bug reports to * * * * hyplas_v2.0@live.co.uk * * * * Messages sent to the authors' personal email addresses * * will NOT be answered. * ************************************************************************ This file contains the following sections: 0. Copyright statement and disclaimer 0.(a) Copyright statement 0.(b) Disclaimer 0.(c) Conditions of use 1. Introduction 1.(a) Note on portability 2. Compiling and running HYPLAS 2.(a) Memory requirements 2.(b) Testing a newly compiled executable 3. The HYPLAS directory tree 4. Cross-referencing between the source code and the textbook 5. HYPLAS error messaging 6. Further remarks on HYPLAS ************************************************************************ 0. COPYRIGHT STATEMENT AND DISCLAIMER ================================== 0.(a) Copyright statement ------------------- You may only use this program for your own private purposes. You are not allowed, in any circumstances, to distribute this program (including its source code, executable and any other files related to it, either in their original version or any modifications introduced by you, the authors or any other party) in whole or in part, either freely or otherwise, in any medium, without the prior written consent of the copyright holders. 0.(b) Disclaimer ---------- This program (including its source code, executable and any other files related to it) is provided "as is" without warranty of any kind, either expressed or implied, including, but not limited to, any implied warranties of fitness for purpose. In particular, THIS PROGRAM IS BY NO MEANS GUARANTEED TO BE FREE FROM ERRORS. This program (or any modification incorporated to it by you, the authors or any other party) will run entirely at your risk. The results produced by this program are in no way guaranteed to be fit for any purpose. Under no circumstances will the authors/copyright holders be liable to anyone for damages, including any general, special, incidental or consequential damages arising from the use or inability to use the program (including, but not limited to, loss or corruption of data, failure of the program to operate in any particular way as well as damages arising from the use of any results produced by the program for any purpose). 0.(c) Conditions of use ----------------- You may only use this program if you fully understand and agree with the terms of the above disclaimer. You must not use this program if you do not agree with or do not understand (fully or in part) these conditions of use. 1. INTRODUCTION ============ HYPLAS is a finite element code for small and large strain analysis of hyperelastic and elasto-plastic solids. Most procedures implemented in HYPLAS are described in detail in its companion textbook: EA de Souza Neto, D Peric & DRJ Owen. Computational Methods for Plasticity: Theory and Applications. Wiley, Chichester, 2008 (www.wiley.com/go/desouzaneto). 1.(a) Note on Portability ------------------- HYPLAS has been written in standard ANSI FORTRAN 77. Currently, the only known (and deliberate) exceptions to the FORTRAN 77 ANSI standard are the instructions: INCLUDE '' used in many routines to include the HYPLAS database files (common blocks and global variables), and; CALL GETENV('HYPLASHOME',HYPLASHOME) used in subroutine "ERRPRT" (file ../HYPLAS_v2.0/src/GENERAL/errprt.f). This instruction inquires the name of the system environment variable HYPLASHOME and writes it on the character string HYPLASHOME. This instruction is NOT part of the ANSI FORTRAN 77 standard, but seems to work in most currently available FORTRAN 77 compilers. 2. COMPILING AND RUNNING H Y P L A S ================================== The HYPLAS source code is stored in directory ../HYPLAS_v2.0/src/ (../HYPLAS_v2.0/ being the current directory) and all its subdirectories. To generate an executable file, you just need to compile the FORTRAN source files: ../HYPLAS_v2.0/src/hyplas.f and ../HYPLAS_v2.0/src/*/*.f together. We recommend that the executable HYPLAS be stored in the directory ../HYPLAS_v2.0/bin to which the environment variable HYPLASHOME should be set (see below how to set a system environmental variable). WINDOWS (R) systems ------------------- On Microsoft Windows(R) systems, HYPLAS has been successfully compiled using Intel Visual Fortran Compiler(R) integrated with Microsoft Visual Studio(R). Here you only need to create a project that contains all Fortran source files mentioned above as well as the include files ..\HYPLAS_v2.0\src\*.INC On a Windows XP system, the system environment variable HYPLASHOME can be set as follows: 1. Open a File Manager 2. Right-click on the "My Computer" icon 3. Select "Properties" on the drop-down menu 4. A new window named "System Properties" will pop-up. Here select the "Advanced" tab. 5. On the "Advanced" tab, click the "Environment Variables" button. 6. A new window titled "Environment Variables" will pop-up. Here click the button "New" in the "System Variables" section of the window. 7. A new window will pop-up titled "New System Variable". Here you should fill the fields "Variable name" and "Variable Value", respectively, with HYPLASHOME and the path name (in full) of the directory ..\HYPLAS_v2.0\bin. 8. Press "OK" on the relevant pop-up windows. 9. The next time the computer is REBOOTED, this variable will be set to the correct path and HYPLAS should be able to find the error messages file ERROR.RUN if required. UNIX/LINUX systems ------------------ In a UNIX/LINUX operating system using a C-shell, for instance, the HYPLASHOME environment variable should be set with the command: setenv HYPLASHOME where here denotes the full path to the directory ../HYPLAS_v2.0/bin. To compile HYPLAS (from directory ../HYPLAS_v2.0/src) with a FORTRAN 77 compiler such as g77, you can use the command: g77 -o ../bin/hyplas hyplas.f */*.f Note that the executable file "hyplas" will be stored in the directory ../HYPLAS_2.0/bin (i.e. the directory set in the HYPLASHOME environment variable). Alternatively, you may use the Makefile provided (with suitable modifications, if needed) to create the HYPLAS executable. IMPORTANT: Before generating a HYPLAS executable, read Sections 2.(a) and 2.(b) below. 2.(a) Memory Requirements ------------------- HYPLAS memory requirements depend on the array dimensioning parameters set in files: ../HYPLAS_v2.0/src/ ELEMENTS.INC GLBDBASE.INC MATERIAL.INC MAXDIM.INC Files ELEMENTS.INC, GLBDBASE.INC and MATERIAL.INC contain parameters which are associated with the currently implemented finite elements and materials. DO NOT MODIFY THEM ! unless you are absolutely sure of what you are doing (only developers coding new elements or new material models/analysis types may need to modify them by changing the existing dimensioning parameters and/or including new parameters). The ONLY dimensioning file that can be safely modified by the average user is the file MAXDIM.INC This file contains the array dimensioning parameters related to the maximum permissible dimension of problems to be analysed by HYPLAS. These parameters include the maximum number of nodes, elements, element groups, etc. If necessary, CHANGE THESE PARAMETERS TO SUIT YOUR PROBLEM SIZE/MEMORY REQUIREMENTS before compiling HYPLAS. 2.(b) Testing a newly compiled executable ----------------------------------- After you have successfully compiled the HYPLAS source code and created an executable file, the next step is to run some tests to verify that HYPLAS is working well. To do this, proceed as follows: The directory ../HYPLAS_v2.0/book_examples/data_files contains a series of data files named .dat of benchmarked examples described in the companion textbook. The corresponding (benchmarked) result files are in the directory ../HYPLAS_v2.0/book_examples/result_files This directory contains a series of result files named .res generated with the current version of HYPLAS on a tested platform. All these files have been named such that their names start with the textbook section number where the corresponding example is described. For instance, files 14_9_2_tresca.dat and 14_9_2_tresca.res refer to a problem described in section 14.9.2 of the textbook, and so on. To check that HYPLAS is working well on your platform, after compiling HYPLAS, run the program HYPLAS for the examples of files .dat and compare the newly generated results .res with their benchmarked counterparts (of the same filename) in the result_files directory. To run an example, execute HYPLAS and use the keyboard to enter the name of the corresponding data file in full (including the extension .dat). To compare the benchmarked .res files against their newly generated you may proceed as follows: 1. On MICROSOFT WINDOWS systems - Here we have successfully used the software "ExamDiff" (the task was made particularly easy by selecting "View" and then the "Show Differences Only" option - this refers to version 1.8 of this software). 2. On UNIX/LINUX systems - Here we use the "diff" command from a shell window (and set the option to ignore blank spaces). A shell script may be used to perform this task automatically (including running HYPLAS and checking for result file differences) for all benchmarked examples provided. IMPORTANT: THE ONLY ACCEPTABLE DIFFERENCES BETWEEN A THE NEWLY GENERATED RESULT FILES AND THEIR BENCHMARKED COUNTERPARTS ARE THE DIMENSIONING PARAMETERS (FROM FILE MAXDIM.INC) USED TO COMPILE THE NEW EXECUTABLE (THESE PARAMETERS ARE PRINTED RIGHT AT THE BEGINNING OF THE RESULT FILES) AND NUMERICAL DIFFERENCES IN RESULTS DUE TO NUMERICAL "ROUNDING-OFF" (THESE ARE VERY SMALL DIFFERENCES THAT DEPEND ON THE PRECISION OF ARITHMETIC OPERATIONS IN THE PLATFORM USED). ALSO NOTE THAT THE EXAMPLES OF THE COMPANION TEXTBOOK DO NOT COVER ALL FEATURES OF HYPLAS. HENCE THIS TEST DOES NOT GUARANTEE THAT EVERYTHING IS WORKING PROPERLY. 3. THE H Y P L A S DIRECTORY TREE ================================ 3.(a) Summary ------- ../ HYPLAS_v2.0/ bin/ book_examples/ data_files/ result_files/ man/ html/ src/ CRYSTAL/ DAMAGE/ DAMAGED_ELASTIC/ DRUCKER_PRAGER/ ELASTIC/ ELEMENTS/ GENERAL/ MATERIALS/ MATHS/ MOHR_COULOMB/ OGDEN/ TRESCA/ VON_MISES/ VON_MISES_MIXED/ 3.(b) Description ----------- The HYPLAS program directory tree is organised as follows: ../HYPLAS_v2.0/ (this directory) This is the HYPLAS root directory, where the HYPLAS directory tree starts. ../HYPLAS_v2.0/bin/ This directory contains the file ERROR.RUN where most HYPLAS error/warning messages are. IMPORTANT: the environment variable HYPLASHOME should be set to this directory. Otherwise, HYPLAS will not find its error/warning messages when required. We also recommend that the EXECUTABLE of HYPLAS be stored in this directory. ../HYPLAS_v2.0/book_examples/ This directory has the following subdirectories: ../HYPLAS_v2.0/book_examples/data_files ../HYPLAS_v2.0/book_examples/result_files Refer to Section 2.(b) above for further details. ../HYPLAS_v2.0/man/ This is the HYPLAS documentation/manuals directory. It contains the following files: input_man.txt - A concise input data manual for HYPLAS in ASCII format; hyplas_calltree.txt - Contains a flowgraph (shows the call tree) of HYPLAS in ASCII-format. Note: calls to function subprograms are not included in this flowgraph; and the subdirectory: ../HYPLAS_v2.0/man/html This directory contains the hypertext (HTML) format Fortran source code and of manual pages of the entire HYPLAS program. Manual pages with descriptions of each function/subprogram including their argument list are linked to their corresponding HTML-format source code. This allows the user the navigate through the HYPLAS source code using a web browser. To start at the main program, use your web browser to open the file hyplas.html. This facility should be helpful to those trying to understand the flow of program HYPLAS. ../HYPLAS_v2.0/src/ This directory (and its subdirectories) contains the Fortran source code of HYPLAS. The files containing the sources are named following the standard practice: .f where is the name of the FORTRAN procedure (subroutine, function subprogram, etc.) whose source code is in file .f. The source code of the HYPLAS main program is in file hyplas.f and the HYPLAS database (COMMON blocks, array dimensioning parameters and other global parameters) is coded in the "include files" ELEMENTS.INC GLDBASE.INC MATERIAL.INC MAXDIM.INC in this directory. In addition, this directory contains a file named "Makefile" (UNIX-LINUX Release only) which may be used for compiling and linking HYPLAS in UNIX/LINUX systems. The subdirectories of ../HYPLAS_v2.0/src are as follows: ../HYPLAS_v2.0/src/CRYSTAL Contains the source code of all procedures related to the finite strain single crystal plasticity model implemented in HYPLAS. ../HYPLAS_v2.0/src/DAMAGE Source files of the procedures related to the Lemaitre ductile damage model implementation. ../HYPLAS_v2.0/src/DAMAGED_ELASTIC Source files of the procedures related to the damaged elasticity model with crack closure effect. ../HYPLAS_v2.0/src/DRUCKER_PRAGER Source files of the procedures related to the implemented Drucker-Prager plasticity model. ../HYPLAS_v2.0/src/ELASTIC Source files of the procedures related to the linear elasticity model (Hencky model under large strains) implemented. ../HYPLAS_v2.0/src/ELEMENTS Source files of the element interfaces and element-related procedures. ../HYPLAS_v2.0/src/GENERAL Source files of general procedures. ../HYPLAS_v2.0/src/MATERIALS Source files of the material interfaces. ../HYPLAS_v2.0/src/MATHS Source files of the mathematical procedures. ../HYPLAS_v2.0/src/MOHR_COULOMB Source files of the procedures related to the implemented Mohr-Coulomb plasticity model. ../HYPLAS_v2.0/src/OGDEN Source files of the procedures related to the implemented Ogden hyperelasticity model. ../HYPLAS_v2.0/src/TRESCA Source files of the procedures related to the implemented Tresca plasticity model. ../HYPLAS_v2.0/src/VON_MISES Source files of the procedures related to the implemented von Mises plasticity model with isotropic hardening. ../HYPLAS_v2.0/src/VON_MISES_MIXED Source files of the procedures related to the implemented von Mises plasticity model with mixed isotropic/kinematic hardening. 4. CROSS-REFERENCING BETWEEN THE SOURCE CODE AND THE TEXTBOOK ========================================================== Many references are made in the textbook to various subprograms of HYPLAS. These are usually made when a particular procedure described in the text is implemented in the program. The reader should refer to the textbook index. Also, a substantial number of comment lines have been added to the source code of HYPLAS with reference to sections, figures, boxes, etc of the textbook related to the part of the code in question. Such references are usually displayed after the word "REFERENCE:" (in capitals) on commented lines. Searching for this word will take you to the line of code where the particular routine has a reference to the textbook. NOTE: Occasional references to other textbooks/journal papers are also made following the word "REFERENCE:" on commented lines. 5. HYPLAS ERROR MESSAGING ====================== Most error/warning messages issued by HYPLAS are in the ASCII-format file ERROR.RUN (kept in the HYPLASHOME directory - ../HYPLAS_v2.0/bin). All such error/warning messages have an identification code (e.g. ED0015) which is printed both to the standard output (this is usually the computer screen) and to the relevant results file. If you wish to find where in the source code a particular message is being issued, then perform a search for the corresponding message identification code in the entire source code of HYPLAS. 6. FURTHER REMARKS ON HYPLAS ========================= 6.(a) Program efficiency THIS SECTION IS OF INTEREST ONLY TO THOSE WANTING TO MAKE HYPLAS RUN FASTER. It is particularly stressed in the textbook that this program has not been designed having efficiency in mind (refer to Section 5.1.2 of the textbook). Its structure has been designed mainly to illustrate in a relatively clear manner the computer implementation of the techniques and algorithms described in the text, with a particular view to the implementation of solid constitutive models and finite elements. For those who are especially interested in the speed of the code, there are a few tips that could help in this direction. Unfortunately, these involve modifications to the source code which is probably most appropriate to readers with a good level of experience in finite element programming. To those with this particular interest, we can suggest the following: (i) The use of faster linear solvers This is probably the change that would result in a greater gain in efficiency. The Frontal Method adopted in subroutine FRONT (file ../HYPLAS_v2.0/src/GENERAL/front.f) has been designed originally to save memory (back in the days when computer memory was severely limited). There are currently a vast number of methodologies which focus on speeding up the linear solution, in addition to reducing memory storage requirements (which is a particularly important issue in the solution of large scale problems). Some of these are extensions/refinements of the original Frontal solver. We remark that a number of such procedures (with their respective source codes) are available (conditions may apply) from the LAPACK (Linear Algebra PACKage - http://www.netlib.org/lapack) repository or from the HSL Library (http://www.cse.cse.scitech.ac.uk/nag/hsl). For the reader interested in gaining speed, we would recommend the replacement of the existing solver of FRONT by a faster one. We remark though that this is a substantial programming task. Another aspect here is the fact that computing times in FRONT are directly linked to the frontwidth of the system which, in the present version of HYPLAS is fixed and depends, for a given mesh, on how the degrees of freedom are numbered (node numbering). The incorporation of a frontwidth optimiser (which re-numbers the degrees of freedom in order to minimise the frontwidth) in FRONT could produce some good savings in computing times. Such savings become particularly noticeable in larger problems where the original node numbering produces an excessively large frontwidth. (ii) Material-specific computations The issues pointed out here affect only the computing times for specific material models and are expected to have a much lower impact in overall speed than the linear solver issue discussed above. Some of the material model-specific computations carried out in HYPLAS could be made a bit faster. For example, for isotropic models whose stress update is carried out in the principal stress space (such as the Tresca and Mohr-Coulomb models - see routines SUTR and SUMC, files ../HYPLAS_v2.0/src/TRESCA/sutr.f and ../HYPLAS_v2.0/MOHR_COULOMB/sumc.f, respectively) the spectral decomposition of the stress in carried out in the state update update routine and then repeated in the corresponding routine for computation of the consistent tangent operator (refer to files ../HYPLAS_v2.0/src/TRESCA/cttr.f and ../HYPLAS_v2.0/src/MOHR_COULOMB/ctmc.f, respectively, for the Tresca and Mohr-Coulomb plasticity models). Some savings in computing time can be achieved here by storing the stress eigenprojection tensors (these can be stored as state variables) during the execution of the state updating and then retrieving them later for use in the computation of the consistent tangent operator. This change can be incorporated to the code relatively easily. The computation of the exponential map and is derivative for the single crystal plasticity model (routines EXPMAP, file ../HYPLAS_v2.0/src/CRYSTAL/expmap.f and DEXPMP, file ../HYPLAS_v2.0/src/CRYSTAL/dexpmp.f) is carried out in three dimensions (these routines have been adapted from an earlier three-dimensional code). To improve efficiency, these can be adapted to work only in two-dimensional problems by removing the unnecessary operations related to the third dimension. 6.(b) Output of nodal averaged values The reader should be aware that the way in which nodal averaged values of stresses and other variables are calculated in HYPLAS is very basic (and rudimentary). This feature of the program is made available only to help those interested in producing contour plots, etc from results presented in HYPLAS result files and should be useful in many circumstances of interest. This facility has in fact been used in producing many of the figures presented in the textbook. But note, for example, that the values of incremental plastic multipliers for plasticity models may take (inadmissible) negative values when extrapolated from Gauss-point to nodes and averaged. We remark that more sophisticated and refined techniques of transferring Gauss point values of variables to nodal points and obtaining the corresponding smoothed field are available in the current literature. These fall outside the scope of the companion textbook of HYPLAS.
Platform: | Size: 11008084 | Author: gtcewli3 | Hits:

[BREWBREW Browser v2.0.0

Description: BREW开发的一个浏览器实例-A web browser sample by BREW
Platform: | Size: 365568 | Author: 张帆 | Hits:

[Internet-Networkjava实验的web浏览器源代码支持mime

Description: java实验的web浏览器源代码支持mime-java web browser source code support mime
Platform: | Size: 14336 | Author: 俩深刻 | Hits:

[Browser Clientwebbrows

Description: 简单的web 浏览器,由vb开发的,具体的内容见源代码。-simple web browser, developed by vb, the specific content of the source code.
Platform: | Size: 26624 | Author: 李建 | Hits:

[Other Web CodeAjax

Description: 1. AJAX介绍 AJAX是一种运用JavaScript和可扩展标记语言(XML),在网络浏览器和服务器之间传送或接受数据的技术。 2. AJAX实例 AJAX可以用来创建更多交互式的网络应用程序。 3. AJAX源代码 简要分析上一章节效果的代码原理 4. AJAX与数据库 AJAX可以用来和数据端进行数据的交互联通。 5. 使用AJAX制作留言本 使用已有的AJAX教程,制作一个属于自己的留言本吧.... -1. AJAX introduce the use of AJAX is a JavaScript and Extensible Markup Language (XML), in a web browser and server to send or receive data between the technologies. 2. AJAX Examples AJAX can be used to create more interactive Web applications. 3. AJAX source code for a brief analysis of the previous chapter the effect of the code section Principle 4. AJAX and Database AJAX can be used for data and data-side interactive Unicom. 5. The use of AJAX Guestbook produced using existing AJAX tutorial, create a message of their own this bar ....
Platform: | Size: 31744 | Author: lichuxiong | Hits:

[Browser ClientIE_VB

Description: 功能齐全多页面浏览器,vb制作的以IE为内核的,网页浏览器源代码.功能十分的强大-Full-featured multi-page browser, vb produced to IE for the kernel, web browser source code. Features a very powerful
Platform: | Size: 1499136 | Author: XCY | Hits:

[JSP/Javawebbrowser

Description: 用JAVA编写的网络浏览器供JAVA爱好者参考学习!-The webbrowser source code which is written by JAVA is provided for JAVA lover!
Platform: | Size: 6144 | Author: delabc | Hits:

[Othersimple_web_browser

Description: source code for a very simple web browser!
Platform: | Size: 2048 | Author: hani | Hits:

[RichEditHTML_Builder_Source

Description: This the source code for the HTML Builder available for download on the home page. This a simple HTML editor that opens a web brower and updates it as you write your HTML code. It can be set up update every couple of seconds, or just when you click the Update button. Most of this web site was created using this editor. It is not fancy in any way shape or form, but works very well. It s a MDI form, containing a rich text box form, and an internet browser form. When you edit your HTML code in the text box, the changes can be viewed in the browser form. This makes it a lot easier than having to keep switching between two applications since you have both windows open and visible within the same application. -This is the source code for the HTML Builder available for download on the home page. This is a simple HTML editor that opens a web brower and updates it as you write your HTML code. It can be set up update every couple of seconds, or just when you click the Update button. Most of this web site was created using this editor. It is not fancy in any way shape or form, but works very well. It s a MDI form, containing a rich text box form, and an internet browser form. When you edit your HTML code in the text box, the changes can be viewed in the browser form. This makes it a lot easier than having to keep switching between two applications since you have both windows open and visible within the same application.
Platform: | Size: 22528 | Author: Eddie | Hits:

[JSP/JavaWebBrowser

Description: 用JAVA语言实现简单的WEB浏览器,这里提供源代码-JAVA language with a simple WEB browser, to provide the source code here
Platform: | Size: 5120 | Author: | Hits:

[WEB Codelongboo-ajax

Description: 龙博框架主要特点 富客户端技术, 可以和任意后端技术(包括但不限于php, .Net, Java, python)或静态的HTML页面. 包含40多个图形界面控件, 例如标签(Tabs), 窗口对话框(Dialog),树型表格(TreeGrid),时间线(TimeLine)等等. 多浏览器兼容, 包括IE6+, firefox1.5+, opera9+, safari3+ 和 Google Chrome. 大量的API文档 和示例. 不断更新的代码片段供程序员参考. 极为方便的所见即所得的界面编辑器. Web界面使用拖拽轻松搞定,大大降低开发时间. 和其他Ajax框架,如jQuery, prototype, mootools充分兼容. 源代码开放。在LGPL许可下, 可免费应用于个人或商业目的. -The framework of the main features of rombo rich-client technology, can be any back-end technologies (including but not limited to php,. Net, Java, python), or static HTML pages. Containing more than 40 graphical interface controls, such as labels (Tabs), dialog window (Dialog), tree form (TreeGrid), timeline (TimeLine) and so on. more compatible browser, including IE6+, firefox1.5+, opera9+, safari3+ and Google Chrome. a lot of API documentation and examples. constantly update the code fragment for the programmer' s reference. extremely convenient WYSIWYG editor interface. Web interface easy to use drag-and-drop to get to significantly reduce development time. and other Ajax frameworks such as jQuery, prototype, mootools fully compatible. source code open. Under the LGPL license can be used free of personal or commercial purposes.
Platform: | Size: 4352000 | Author: Lee XiaoLiang | Hits:

[WEB CodeDelphi_website

Description: ※Delphi梦境全站资源及源代码※ 真正所见即所得的Delphi Web开发利器-IntraWeb 本站全站都是用这个东东开发的。IntraWeb很像是普通的应用程序,唯一不同的是它的用户界面是用浏览器代替了通常的Windows界面。使用IntraWeb来开发Web 应用程序,你不需要懂得HTML、JavaScript、CSS 这些技术就可以轻易的建构出具有友好界面及强大功能的Web 应用程序。Intraweb就是我们想使用delphi开发web程序的人梦寐以求的工具。 -※ Delphi dream the whole point of resources and source code ※ true WYSIWYG Delphi Web development tool for the whole station-IntraWeb site is developed with this Dongdong. IntraWeb like an ordinary application, the only difference is its user interface is to use the browser instead of the usual Windows interface. IntraWeb to develop the use of Web applications, you do not know HTML, JavaScript, CSS these technologies can easily construct a friendly interface and powerful features of Web applications. Intraweb is that we want to use the delphi program developed web tool for those who dream.
Platform: | Size: 932864 | Author: kkbeibei123 | Hits:

[JSP/Javajava6-in-21-days

Description: 《21天学通java6》课本中源代码打包下载。 只需21天的时间,便可具备使用Java开发运行在计算机中的应用程序、运行在Web服务器中的servlet,以及通过浏览器启动的Java Web Start应用程序的知识和技能。本书可作为初学者学习Java编程技术的教程,也可供已掌握其他语言的程序员学习Java时参考。-" 21 Days java6" package download the source code for textbook. Just 21 days, you can use the Java development with the computer running the application, running on the Web server servlet, and the browser launched Java Web Start application of knowledge and skills. This book can be as a beginner to learn Java programming tutorial, also available in other languages ​ ​ programmers have mastered learning Java reference.
Platform: | Size: 1429504 | Author: 唐铁虎 | Hits:

[MacOS developCSS-design-source-code

Description: [高访问量网站的CSS设计].源代码你将从《Pro CSS for High Traffic Websites》中学习到制作强大和模块化的CSS、如何最大限度地提高网站的性能、跨浏览器和CSS访问的最佳做法、CSS技术动态等等。 -Targeted at "high traffic" websites—those receiving over 10,000 unique visitors a day—Pro CSS for High Traffic Websites gives you inside information from the professionals on how to get the most out of your web development team. What you’ll learn The value of process Making reusable, robust, and modular CSS How to maximize the performance of your site Integrating with third parties How to keep branding consistent Best practices for cross-browser and accessible CSS Dynamic CSS techniques
Platform: | Size: 2846720 | Author: 黄传 | Hits:

[Browser ClientWenBrowser

Description: 一个简单的网页浏览器 源代码 供学习测试使用 需要的可以自己下载 -A simple web browser source code for learning tests need to use can download
Platform: | Size: 2921472 | Author: 伍林林 | Hits:

[WEB Codesjbqywz

Description: 一套手机网站模板,专用于建设手机浏览的企业网站系统,目前针对于移动设备的企业网站源码不是在多,本款源码为大家搭建基于手机的企业网站多了一个选择。为了获得最佳浏览效果,请在手机上浏览模板,此手机网站与PC网站后台同步更新,可以用同一个域名访问,管理维护方便。-A mobile site template, dedicated to building the mobile browser of enterprise web systems, currently targeted at mobile devices in a multi-site enterprise is not the source, the source code for everyone to build a mobile phone models based business website more of a choice. For the best browsing effect, please visit on the phone template, this mobile site synchronized with the PC website background, you can use the same domain name access, management and maintenance.
Platform: | Size: 142336 | Author: spudn13 | Hits:

[WEB Codesjwzmb

Description: 一套手机网站模板,专用于建设手机浏览的企业网站系统,目前针对于移动设备的企业网站源码不是在多,本款源码为大家搭建基于手机的企业网站多了一个选择。为了获得最佳浏览效果,请在手机上浏览模板,此手机网站与PC网站后台同步更新,可以用同一个域名访问,管理维护方便。-A mobile site template, dedicated to building the mobile browser of enterprise web systems, currently targeted at mobile devices in a multi-site enterprise is not the source, the source code for everyone to build a mobile phone models based business website more of a choice. For the best browsing effect, please visit on the phone template, this mobile site synchronized with the PC website background, you can use the same domain name access, management and maintenance.
Platform: | Size: 142336 | Author: spudn22 | Hits:

[OtherCPP-Web-browser-program-source-code

Description: C++制作的网页浏览器程序源代码,支持向前、向后翻页,支持刷新,实现了基本的网页浏览功能,不过好像没有屏蔽弹窗的功能,测试时候发现该弹出来的弹窗都弹了,呵呵,必竟是前些年写的程序,发上来仅供参考吧,感谢大家来捧常VC++源码版的网页浏览器,欢迎下载。 -C++ crafted web browser source code, support forward, backward flip, supports a refresh to achieve a basic web browsing capabilities, but does not seem to pop shield function test found that pop up when popups are playing huh, huh, will actually write the program a few years ago, it made up only for reference, thank you for holding regular VC++ source version of the web browser, welcome to download.
Platform: | Size: 23552 | Author: 丫丫 | Hits:

[androidsource

Description: A Web Browser App in Android This article demonstrates creating a Browser App in Android-Introduction Sometimes we need to display some online content in our Android App. It would be very helpful if we could use a control that displays such online content directly in our app. The WebView control provides this functionality to our Android app. It enables us to embed a web browser in our activity. Using the WebView control we can display online content as well as any HTML page stored in our project. Background In this article, I have used an EditView control to accept the URL of a web page or a local page. A WebView control is added to render the page on the device. Pressing the GO button after entering the URL will cause the page to be displayed on the WebView control. Using the code In order for our activity to access the internet and load web pages in the WebView, we need to specify the Internet permission for our app in the AndroidManifest.xml file as follows: Hide Copy Code <uses-permission android:name= android.permission.INTERNET /> Follow
Platform: | Size: 2048 | Author: MahdiAttar | Hits:

[androidshztkdjyllq

Description: 简易浏览器源码是一个简单的安卓浏览器项目源码,如果你已经搭建了一个适合手机浏览的服务端网站比如公司主页等,完全可以把这个源码当作外壳来做一个属于自己的“套壳客户端”,也就是套着安卓客户端的壳子实际上是放了一个浏览器用来直接浏览web内容,点击手机的物理返回键可以返回到上一次浏览的界面。源码有比较丰富的注释,比较适合用来学习WebView控件使用或者做一个简单的客户端,第一次自动打开的页面和点击右上角小房子按钮转转跳到的链接都可以在MainActivity里面指定。-Simple browser source code is a simple Android browser project source code, if you have already set up a suitable mobile browsing server sites such as the company s home page, can treat the source as a shell to do a belongs to own shell client , is a shell of Android client is actually put a browser to browse web content, click the phone s physical return key can return to a browsing interface. Source has rich notes, very suitable for learning the WebView control or do a simple client, first automatically open the page and click on the lower right corner of the small house buttons around jump to the links can be specified inside the mainactivity.
Platform: | Size: 1809408 | Author: liujianwei | Hits:
« 12 3 »

CodeBus www.codebus.net